home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Date
- @Method: getTime() - returns the numeric value corresponding to the time.
- @Syntax: date.getTime()
- @Summary: getTime - returns the numeric value corresponding to the time
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("date.getTime()", selection);
- editor.setActive("Insert date.getTime");
- }
- }
-
- !!/Script
-